home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 2007 January
/
PCWorld_2007-01_cd.bin
/
v cisle
/
autoit
/
autoit-v3.2.0.1-setup.exe
/
Examples
/
Helpfile
/
GUISetFont.au3
< prev
next >
Wrap
Text File
|
2006-06-17
|
639b
|
24 lines
#include <GUIConstants.au3>
GUICreate ("My GUI default font") ; will create a dialog box that when displayed is centered
$font="Comic Sans MS"
GUISetFont (9, 400, 4, $font) ; will display underlined characters
GUICtrlCreateLabel ("underlined label",10,20)
GUISetFont (9, 400, 2, $font) ; will display underlined characters
GUICtrlCreateLabel ("italic label", 10,40)
GUISetFont (9, 400, 8, $font) ; will display underlined characters
GUICtrlCreateLabel ("strike label",10,60)
GUISetState ()
; Run the GUI until the dialog is closed
While 1
$msg = GUIGetMsg()
If $msg = $GUI_EVENT_CLOSE Then ExitLoop
Wend